body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
}

h1 {
  color: #f83a6f;
  text-align: center;
}
h6 {
  color: #333;
  text-align: center;
}


.files-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.file-item {
  width: calc(30% - 20px); /* Adjusted width with margin */
  margin-bottom: 20px;
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box; /* Added box-sizing for accurate width calculation */
}

.file-item h3 {
  color: #333;
  margin-bottom: 10px;
}
.file-item h5 {
 
  display: block;
  padding: 7px 15px;
  background-color: #f83a6f;
  color: white;
  border: 1px solid black;
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;

  
}

.file-item p {
  margin-bottom: 15px;
}

.download-link {
  width: 100%;
  display: block;
  padding: 8px 15px;
  margin-block: 10px;
  background-color: white;
  border: 1px solid #f83a6f;
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
}

.download-link:hover {
  background-color: #f83a6f;
  color: white;
}

.screenshots {
  display: flex;
  flex-wrap: wrap;
}

.screenshots img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 4px;
}

/* Media Queries for responsiveness */

@media screen and (max-width: 1024px) {
  .file-item {
    width: calc(45% - 20px); /* Adjusted width with margin */
  }
}

@media screen and (max-width: 768px) {
  .file-item {
    width: calc(50% - 20px); /* Adjusted width with margin */
  }
}

@media screen and (max-width: 480px) {
  .file-item {
    width: calc(100% - 20px); /* Adjusted width with margin */
  }
}
